/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 1rem 2rem;
  background-color:#FFFFFF;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color:#E0558D;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.nav-links a:hover {
  background-color:#FFEBF0;
  color: #E0558D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
}

.menu-page {
  padding: 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.menu-image img {
  width: 1200px;
  height: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.menu-note {
  font-size: 1.2rem;
  margin-top: 2px;
  color: #666;
}

.back-button {
  margin-bottom: 2rem;
}

.btn {
  background-color: #ff69b4;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ff85c1;
}

.menu-background {
  background-color: #ffebf0; 
  padding: 30px 0px;
  text-align: center;
}

.menu-content {
  max-width: 3000px;
  margin: auto;
}

.menu-content p {
	font-size: 1.3rem;
}
.menu-content h1 {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: #E0558D;
  margin-bottom: 10px;
}

.menu-image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 20px;
}

.logo img {
  height: 90px;    
  width: auto;
  display: block;
}

.custom-footer {
    background-color:#6B6B6B;
    color: #fff;
    padding: 40px 60px 55px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 140px;
    width: auto;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 1;
    flex-wrap: wrap;
    gap: 20px;
    margin-right: 20rem;
}

.footer-column {
    min-width: 150px;
    line-height: 1.6;
    border-left: 1px solid #fff;
    padding-left: 20px;
}

.footer-column:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-contact-btn {
    margin-top: 10px;
    padding: 8px 20px;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.footer-contact-btn:hover {
    background-color: #fff;
    color: #525656;
}

.footer-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.footer-icons img {
    height: 24px;
    width: 24px;
    filter: invert(1);
    object-fit: contain;
    border-radius: 50px;
}

.footer-icons img:hover {
    transform: scale(1.5);
    transition: 0.2s;
}

.footer-copyright {
    text-align: center;
    margin-top: -2rem;
    font-size: 1rem;
    color: #f1f1f1;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    gap: 30px;
    margin-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 2rem;
}

.footer-contact .btn {
    background-color: #F0F0F0;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.footer-contact .btn:hover {
    background-color: #DFC0CC;
}

.footer-contact img:hover {
    transform: scale(1.1);
    cursor: pointer;
}


.fb-logo {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.fb-logo:hover {
  transform: scale(1.1); 
  cursor: pointer;
}

.ig-logo {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
}

.ig-logo:hover {
  transform: scale(1.1); 
  cursor: pointer;
}

.menu-gallery {
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
  font-family: 'Open Sans', sans-serif;
}

.menu-gallery h2 {
  font-size: 2.2rem;
  color: #E0558D;
  margin-bottom: 30px;
  font-family: 'Pacifico', cursive;
}

.menu-gallery-container {
  display: flex;
  flex-direction:row;
  gap: 0.1px;
  align-items: center;
}

.menu-photo-card img {
  width: 95%;
  max-width: 800px;
  border-radius: 15px;
}

.button-row {
  display: flex;
  justify-content: center; 
  gap: 20px; 
  margin-top: 40px;
}

.button-row .btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 15px;
  background-color:#DC92AB;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s;
}

.button-row .btn:hover {
  background-color: #c54679;
}
